home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / Utilities / 00008_Tool4.ls < prev    next >
Encoding:
Text File  |  2000-10-18  |  717 b   |  30 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   if sprite(the currentSpriteNum).foreColor = 70 then
  4.     sprite(the currentSpriteNum).foreColor = 70
  5.     member("Title4").foreColor = 0
  6.   else
  7.     if sprite(the currentSpriteNum).foreColor <> 70 then
  8.       sprite(the currentSpriteNum).foreColor = 255
  9.       member("Title4").foreColor = 0
  10.     end if
  11.   end if
  12. end
  13.  
  14. on mouseLeave
  15.   cursor(0)
  16.   if sprite(the currentSpriteNum).foreColor = 70 then
  17.     sprite(the currentSpriteNum).foreColor = 70
  18.     member("Title4").foreColor = 0
  19.   else
  20.     if sprite(the currentSpriteNum).foreColor <> 70 then
  21.       sprite(the currentSpriteNum).foreColor = 246
  22.       member("Title4").foreColor = 255
  23.     end if
  24.   end if
  25. end
  26.  
  27. on mouseDown
  28.   go("Title4")
  29. end
  30.